Removes an index from the collection.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public abstract bool Remove(
	LambdaExpression keySelector
)
Visual Basic
Public MustOverride Function Remove ( _
	keySelector As LambdaExpression _
) As Boolean

Parameters

keySelector
Type: System.Linq.Expressions..::..LambdaExpression
Key selector expression of an index, see KeySelector.

Return Value

true if an index has been removed; false if there is no index with the given key selector in the collection.

See Also